home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Language/OS - Multiplatform Resource Library
/
LANGUAGE OS.iso
/
a_utils
/
perl
/
msds-prl
/
bcdsprl4.zoo
/
doslocal.c
< prev
next >
Wrap
C/C++ Source or Header
|
1991-12-25
|
230b
|
15 lines
#include <alloc.h>
extern unsigned _stklen;
unsigned long heapfree()
{
return (coreleft());
}
unsigned long stkfree()
{
return ((unsigned long)_stklen -
((unsigned long)_stklen - (unsigned long) _SP));
}